home *** CD-ROM | disk | FTP | other *** search
- /* layout windows */
- OPTIONS RESULTS
-
- 'Get' SCREENHEIGHT
- screenHeight=RESULT-14
- 'Get' SCREENWIDTH
- screenWidth=RESULT
- 'Get' WINDOWS
- numWindows=RESULT
- vw=numWindows
- IF numWindows > 4 THEN
- vw=2
- IF numWindows > 9 THEN
- vw=3
- IF numWindows > 16 THEN
- vw=4
- IF numWindows > 25 THEN
- vw=5
- windowHeight=screenHeight%vw
- windowWidth=screenWidth%((numWindows+vw-1)%vw)
- 'Get' WINDOWID
- thisWindow=RESULT
- 'FirstWindow'
- DO i=0 TO numWindows-1
- 'SetWindowBox' i%vw*windowWidth i//vw*windowHeight+14 windowWidth windowHeight
- 'NextWindow'
- END
- 'SelectWindow' thisWindow
- 'WindowToFront'